home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / ideas / n.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  3KB  |  143 lines

  1. /*
  2.  * Copyright 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. #include <gl.h>
  18.  
  19.  
  20. float n_data[][2] = {
  21.     {1.009307, 9.444788},
  22.     {2.548087, 9.742002},
  23.     {1.737332, 9.213622},
  24.     {2.994829, 9.659443},
  25.     {1.985522, 8.751290},
  26.     {3.127198, 9.180598},
  27.     {1.935884, 7.975232},
  28.     {2.481903, 6.571723},
  29.     {1.472596, 5.019608},
  30.     {1.439504, 2.988648},
  31.     {1.025853, 2.988648},
  32.  
  33.     {2.283350, 6.059855},
  34.     {2.035160, 5.366357},
  35.     {3.292658, 7.711042},
  36.     {3.540848, 7.744066},
  37.     {4.384695, 9.031992},
  38.     {4.699069, 8.916409},
  39.     {5.609100, 9.808049},
  40.     {5.145812, 8.982456},
  41.     {6.155119, 9.791537},
  42.     {5.410548, 8.635707},
  43.     {6.337125, 9.312694},
  44.     {5.360910, 7.991744},
  45.     {6.088935, 8.090816},
  46.     {4.947259, 5.977296},
  47.     {5.261634, 4.804954},
  48.     {4.616339, 4.028896},
  49.     {5.211996, 3.962848},
  50.     {4.732162, 3.318886},
  51.     {5.559462, 3.814241},
  52.     {5.228542, 3.038184},
  53.     {5.940021, 3.814241},
  54.     {5.906929, 3.335397},
  55.     {6.684591, 4.094943},
  56.  
  57. };
  58.  
  59. draw_n() {
  60.  
  61.     bgntmesh();
  62.     v2f(n_data[0]);
  63.     v2f(n_data[1]);
  64.     v2f(n_data[2]);
  65.     v2f(n_data[3]);
  66.     v2f(n_data[4]);
  67.     v2f(n_data[5]);
  68.     v2f(n_data[6]);
  69.     v2f(n_data[7]);
  70.     v2f(n_data[8]);
  71.     v2f(n_data[9]);
  72.     v2f(n_data[10]);
  73.     endtmesh();
  74.  
  75.     bgntmesh();
  76.     v2f(n_data[11]);
  77.     v2f(n_data[12]);
  78.     v2f(n_data[13]);
  79.     v2f(n_data[14]);
  80.     v2f(n_data[15]);
  81.     v2f(n_data[16]);
  82.     v2f(n_data[17]);
  83.     v2f(n_data[18]);
  84.     v2f(n_data[19]);
  85.     v2f(n_data[20]);
  86.     v2f(n_data[21]);
  87.     v2f(n_data[22]);
  88.     v2f(n_data[23]);
  89.     v2f(n_data[24]);
  90.     v2f(n_data[25]);
  91.     v2f(n_data[26]);
  92.     v2f(n_data[27]);
  93.     v2f(n_data[28]);
  94.     v2f(n_data[29]);
  95.     v2f(n_data[30]);
  96.     v2f(n_data[31]);
  97.     v2f(n_data[32]);
  98.     v2f(n_data[33]);
  99.     endtmesh();
  100.  
  101.     bgnline();
  102.     v2f(n_data[0]);
  103.     v2f(n_data[2]);
  104.     v2f(n_data[4]);
  105.     v2f(n_data[6]);
  106.     v2f(n_data[8]);
  107.     v2f(n_data[10]);
  108.     v2f(n_data[9]);
  109.     v2f(n_data[7]);
  110.     v2f(n_data[5]);
  111.     v2f(n_data[3]);
  112.     v2f(n_data[1]);
  113.     endline();
  114.  
  115.     bgnline();
  116.     v2f(n_data[12]);
  117.     v2f(n_data[14]);
  118.     v2f(n_data[16]);
  119.     v2f(n_data[18]);
  120.     v2f(n_data[20]);
  121.     v2f(n_data[22]);
  122.     v2f(n_data[24]);
  123.     v2f(n_data[26]);
  124.     v2f(n_data[28]);
  125.     v2f(n_data[30]);
  126.     v2f(n_data[32]);
  127.     v2f(n_data[33]);
  128.     v2f(n_data[31]);
  129.     v2f(n_data[29]);
  130.     v2f(n_data[27]);
  131.     v2f(n_data[25]);
  132.     v2f(n_data[23]);
  133.     v2f(n_data[21]);
  134.     v2f(n_data[19]);
  135.     v2f(n_data[17]);
  136.     v2f(n_data[15]);
  137.     v2f(n_data[13]);
  138.     v2f(n_data[11]);
  139.     endline();
  140.  
  141. }
  142.  
  143.